home *** CD-ROM | disk | FTP | other *** search
/ Libris Britannia 4 / science library(b).zip / science library(b) / DDJMAG / DDJ9203.ZIP / 80X87.ZIP / MAKEFILE next >
Text File  |  1991-11-09  |  725b  |  28 lines

  1. # Makefile for FP test programs.
  2. # Copyright (C) 1991 by Nicholas Wilt.    All rights reserved.
  3.  
  4. # C uses large model by default.  All the assembler modules assume
  5. # large model also.
  6. MDL=l
  7.  
  8. # Implicit rules.
  9. .c.obj:
  10.     bcc -v -O -G -Z -c -m$(MDL) $*.c
  11.  
  12. .asm.obj:
  13.     tasm /mx/zi $<;
  14.  
  15. # Explicit rule: build all three executables by default.
  16. all: testpow.exe testsum.exe testquad.exe
  17.  
  18. # Explicit rules for the three executables.
  19.  
  20. testpow.exe: testpow.obj pow.obj
  21.     tlink /v/c/map c0l testpow pow,testpow,,emu mathl cl
  22.  
  23. testsum.exe: testsum.obj sumarr.obj
  24.     tlink /v/c/map c0l testsum sumarr,testsum,,emu mathl cl
  25.  
  26. testquad.exe: testquad.obj quad.obj
  27.     tlink /v/c/map c0l testquad quad,testquad,,emu mathl cl
  28.